| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | var chai = require('chai'); |
||
| 12 | before( function(done) { |
||
| 13 | Manager.instance.init() |
||
| 14 | .then(function () { |
||
| 15 | try{ |
||
| 16 | this.fixture = { |
||
| 17 | tag: fse.readFileSync(path.join(__dirname, 'fixtures', 'templates', 'article.html'), 'utf8') |
||
| 18 | } |
||
| 19 | }catch(e){ |
||
| 20 | console.log("err", e) |
||
| 21 | } |
||
| 22 | done() |
||
| 23 | |||
| 24 | }.bind(this)) |
||
| 25 | }); |
||
| 26 | |||
| 46 |